home *** CD-ROM | disk | FTP | other *** search
-
-
- On Wed, 18 Jan 1995, mef4 wrote:
-
- > > screen 1
- > > for i= 1 to 100
- > > circle rnd(319),rnd(199),rnd(15)
- > > next i
- > > screen 0
- > >
- > > The other way is too inflexible and can lead to inefficient behaviour,
- > > and probably will interfere with other programming techniques.
- >
- > You mean
- >
- > for(i=0;i<100;i++)
- > {
- > circle(1,rnd(319),rnd(199),rnd(15));
- > } ?
- >
- Seeing code like this has definitely converted me to the MARP/C++ idea.
- Richard
-
-
-
-